博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
BinarySearchTree
查看>>
CentOS 6.4 面板日期格式显示异常的解决
查看>>
centos6.9编译安装httpd2.4
查看>>
salt halite
查看>>
tomcat结合nginx使用小结
查看>>
JAVA操作Excel 可配置,动态 生成复杂表头 复杂的中国式报表表头
查看>>
oracle 物化视图
查看>>
Schema约束
查看>>
QString,char,string之间赋值
查看>>
js编码
查看>>
蓝鸥Unity开发基础二——课时13 构造方法
查看>>
2016年学习Linux决心书(老男孩教育在线课程班第二期)
查看>>
c语言指针
查看>>
Linux LVM逻辑卷管理
查看>>
Myeclipse 添加本地XSD文件
查看>>
CCNA学习笔记--IP地址分类
查看>>
HAproxy的基本配置(负载均衡+日志独立+动静分离+读写分离)
查看>>
每天一个linux命令(3):pwd命令
查看>>
学习PHP课程的第三天
查看>>
在javascript使用EL表达式注意事项
查看>>